home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 47.7z / BS1 part 47 / Bad Dozer Demo (1994)(Fast Ram Design & Amiga Format Magazine)[WB].7z / Bad Dozer Demo (1994)(Fast Ram Design & Amiga Format Magazine)[WB].adf / S / Startup-sequence < prev    next >
Text File  |  1991-07-16  |  1KB  |  64 lines

  1. c:setpatch >NIL:
  2. c:version >NIL:
  3. addbuffers >NIL: df0: 15
  4. Failat 21
  5.  
  6. Resident >NIL: C:Execute PURE ADD
  7.  
  8. makedir ram:T ram:Clipboards ram:env ram:env/sys
  9. copy >NIL: ENVARC: ram:env all quiet noreq
  10.  
  11. assign ENV: ram:env
  12. assign T: ram:t ;set up T: directory for scripts
  13. assign CLIPS: ram:clipboards
  14. assign REXX: s:
  15.  
  16. if exists sys:Monitors
  17.     join >NIL: sys:monitors/~(#?.info) as t:mon-start
  18.     execute t:mon-start
  19.     delete >NIL: t:mon-start
  20. endif
  21.  
  22. BindDrivers
  23.  
  24. setenv Workbench $Workbench
  25. setenv Kickstart $Kickstart
  26.  
  27. IPrefs
  28.  
  29. echo "Amiga Release 2.  Kickstart $Kickstart, Workbench $Workbench"
  30.  
  31. conclip
  32.  
  33. mount speak:
  34. mount aux:
  35. mount pipe:
  36.  
  37. path ram: c: sys:utilities sys:rexxc sys:system s: sys:prefs sys:wbstartup add
  38. if exists sys:tools
  39.     path sys:tools add
  40.     if exists sys:tools/commodities
  41.         path sys:tools/commodities add
  42.     endif
  43. endif
  44.  
  45. ; If this is the initial boot (i.e. keyboard env variable is not set)
  46. ; then execute PickMap which will query for a keymap and set the
  47. ; keyboard env variable.
  48. ; if keyboard env variable is set, set the keymap
  49. if ${sys/keyboard} NOT EQ "*${sys/keyboard}"
  50.     setmap ${sys/keyboard}
  51. else
  52.     PickMap sys: initial
  53. endif
  54.  
  55. if exists s:user-startup
  56.     execute s:user-startup
  57. endif
  58.  
  59. LoadWB
  60.  
  61. endcli >NIL:
  62.  
  63.